home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / FileBrowser / MyNXBrowserCell.m < prev    next >
Encoding:
Text File  |  1995-04-12  |  664 b   |  41 lines

  1. //        Written by Todd Thomas Copyright (c) 1994 by Todd Thomas.
  2. //                Version 1.0.  All rights reserved.
  3. //
  4. //        This notice may not be removed from this source code.
  5. //
  6. //    This object is included in the MiscKit by permission from the author
  7. //    and its use is governed by the MiscKit license, found in the file
  8. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  9. //    for a list of all applicable permissions and restrictions.
  10. //    
  11.  
  12.  
  13. #import "MyNXBrowserCell.h"
  14.  
  15. @implementation MyNXBrowserCell
  16.  
  17. - init
  18. {
  19.     [super init];
  20.  
  21.     miscFile = nil;
  22.     return self;
  23. }
  24.  
  25.  
  26.  
  27. - setFile: aFile
  28. {
  29.     miscFile = aFile;
  30.     return self;
  31. }
  32.  
  33.  
  34.  
  35. - file
  36. {
  37.     return miscFile;
  38. }
  39.  
  40. @end
  41.